home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / formset / fsetdemo.dpr < prev    next >
Text File  |  1996-04-08  |  336b  |  18 lines

  1. program Fsetdemo;
  2.  
  3. uses
  4.   Forms,
  5.   Unit1 in 'UNIT1.PAS' {Form1},
  6.   Page1 in 'PAGE1.PAS' {fPage1},
  7.   Page2 in 'PAGE2.PAS' {fPage2},
  8.   Page3 in 'PAGE3.PAS' {fPage3},
  9.   Formset in 'FORMSET.PAS';
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.CreateForm(TfPage3, fPage3);
  16.   Application.Run;
  17. end.
  18.